home *** CD-ROM | disk | FTP | other *** search
/ APDL Eductation Resources / APDL Eductation Resources.iso / programs / misc / cambridge / Instruct < prev    next >
Encoding:
Text File  |  1993-09-19  |  5.8 KB  |  143 lines

  1.                 Cambridge Instruction Set Emulator - User Guide
  2.                -===============================================-
  3.  
  4. Version 1.10 - 24th May 1993
  5.  
  6. Copyright A. M. Pereira 1993
  7.  
  8. This program is copyright and may not be used, copied or otherwise distributed without the permission of the author.
  9.  
  10. Using the Emulator
  11. ------------------
  12.  
  13. The program is started by double clicking on the !Cambridge icon. The icon should then appear on the icon bar. Two types of file can now be loaded :-
  14.         1. Source code files which are then assembled ready for use, or
  15.         2. Object code files saved from a previous session.
  16.  
  17. There may be a small delay while source code files are assembled.
  18.  
  19. Clicking select on the icon will now show the main window. On the left of the window is the next instruction to be executed or the message 'Click on Start', the current contents of the Accumulator and the X register and the start/stop button.
  20.  
  21. The next instruction display is in the follwing form:
  22.  
  23.              00 - 3E FF - LDA #&FF
  24.              |     | |      |
  25.              |     | |      |- This is the mnemonic
  26.              |     | |
  27.              |      --- This is the contents
  28.              |
  29.              |- This is the address
  30.  
  31. On the right of the display is the current Input/Output status.
  32. The inputs can be altered by clicking on them. (Pushed in means that they are on)
  33. The Input/Output status is displayed in hex as well above the displays.
  34.  
  35. If you click with menu on the icon bar icon, a menu will appear from which the following options are available:
  36.    Info      - leads to a dialogue box with information about the program
  37.    Save      - leads to a standard save box to save the object code
  38.    Speed     - allows you to set the speed in units of 1/10th of a second
  39.                (min 0.1s)
  40.    Reset     - Sets A, X, and PC to 0.
  41.    Quit      - Quits program
  42.  
  43. The source files
  44. ----------------
  45.  
  46. The format for instructions is as follows:
  47.  
  48.      <mnemonic> [parameters]
  49.  
  50. The mnemonic is one of those described in Appendix A. The parameters are dependent on the mnemonic and some instructions, eg INX, do not require any.
  51. Memory addresses are typed normally, eg LDA &34 will load the accumulator from address &34. Immediate constants should be preceded with a # eg LDA #4 will load the accumulator with the value 4.
  52.  
  53. Comments may be started with either the ';' character or the '\' character and last until the next line.
  54.  
  55. To make programs more readable, the MAKE command allows you to name numbers, eg
  56.  MAKE Output &FF
  57. will allow you to use 'Output' instead of &FF anywhere in the program, eg
  58.  STA Output
  59.  
  60. It is important not to MAKE a variable with the same name as a label.
  61.  
  62. Labels can be created with .<name> and then referred to as <name> eg
  63. .Loop
  64. JMP Loop
  65.  
  66. To define a series of bytes as numbers use DEFB, eg
  67. DEFB &65 &64 &63 .
  68. (Note the full stop on the end)
  69.  
  70. Whenever a number is required, a calculation may be used, eg
  71.  
  72.    lda #&45+2
  73.  
  74. Hex numbers are recognised by the & sign.
  75. Decimal numbers are used by default.
  76. Binary numbers can be entered by preceding them with %, eg %11010100
  77.  
  78. Variables made with the MAKE comand and labels may not be used in calculations, eg
  79.      MAKE Input  &3E
  80.      MAKE Output &3E+16
  81.      STA  Output                   ; This is fine
  82.  
  83.      MAKE Input  &3E
  84.      MAKE Output Input+16          ;This will cause an error since Input was
  85.      STA  Output                   ;defined with MAKE
  86.  
  87. Points to remember:
  88.    - Everything is case insensitive.
  89.    - MAKE values and labels must never begin with the letter X, or they'll get confused 
  90.      with the X register
  91.  
  92. That sums up the brief guide. I'll do a full guide on Impression sometime with details on how to write device drivers sometime...
  93.                          
  94.  
  95. Appendix A - Instructions                                  
  96. -------------------------
  97.  
  98. M(n) means memory location n.
  99. M(X) means memory location held in X register.
  100. The microprocessor has 256 bytes of memory.                                       
  101.  
  102. There is an 8bit input port at address &EF and an 8bit output port at address &FF.
  103. The processor has 3 8bit registers:
  104.     
  105. • Program counter
  106. • Accumulator     (A)
  107. • Index register  (X)
  108.  
  109. Instruction               Function            Mnemonic
  110. -----------               --------            --------
  111.     3E          n         A    = n            LDA   #n
  112.     C6          n         A    = A + n        ADD   #n
  113.     D6          n         A    = A - n        SUB   #n
  114.     E6          n         A    = A AND n      AND   #n
  115.     EE          n         A    = A EOR n      EOR   #n
  116.     3A          n         A    = M(n)         LDA   n
  117.     32          n         M(n) = A            STA   n
  118.     7E                    A    = M(X)         LDA   X
  119.     77                    M(X) = A            STA   X
  120.     86                    A    = A + M(X)     ADD   X
  121.     96                    A    = A - M(X)     SUB   X
  122.     A6                    A    = A AND M(X)   AND   X
  123.     AE                    A    = A EOR M(X)   EOR   X
  124.     6F                    X    = A            TAX            Transfer A to X
  125.     7D                    A    = X            TXA            Transfer X to A
  126.     C9                    X    = X + 1        INX
  127.     C3          n         PC   = n            JMP   n
  128.     CA          n         PC   = n if A = 0   JEQ   n
  129.     C2          n         PC   = n if A<>0    JNE   n
  130.     00                    Do nothing          NOP
  131.     76                    Halt                HLT
  132.  
  133. The instructions are 1 byte long when assembled except when a parameter is required in which case they are two bytes long.    
  134.  
  135. The instruction set is exactly as specified by the Cambridge Exam board.
  136.  
  137. This copy of !Cambridge also includes three device drivers:
  138.  
  139.    EgDrive - an example of how to write device drivers which replaces the normal input and 
  140.              provides a similar output display.
  141.    7Seg    - an onscreen 7 segment display.
  142.    Stepper - an onscreen display of a Stepper motor
  143.